home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / GRP_CVTR / REALIZ10 / DEMOPLAN.RDR < prev    next >
Text File  |  1994-05-23  |  1KB  |  45 lines

  1. * converts the demoplan.dxf to a brick maze
  2. *  This will not produce an object at all but for
  3. *   line 8  giving all lines a thickness of 3.
  4.  
  5. global
  6.     sky cloudy
  7.     floor grassy
  8.     default_2d_thickness 3
  9. * the next line turns off optimizing for this very small model
  10.     no_optimize
  11.  
  12. * The only modification of demoplan.dxf is the grouping of horizontal and
  13. * vertical lines so as to texture them properly.
  14. * X layer holds all horizontal lines and y layer holds all vertical lines.
  15.  
  16. layer x layer_texture
  17.     pigment_map bricks
  18.     up z right x
  19.     no_fit
  20.     no_transform
  21.  
  22. layer y layer_texture
  23.     pigment_map bricks
  24.     up z right y
  25.     no_fit
  26.     no_transform
  27.  
  28.  
  29. * the following replaces default view to show more detail
  30.  
  31. insert at_end begin_insert
  32.     camera {       location <36.7119500,-1.5350000,4.3962890>
  33.       direction <0.0,0.0,1.9157088>
  34.       up <0.0,0.0,1.0>
  35.       sky <0.0,0.0,1.0>
  36.       right <-1.3333333,0.0,0.0>
  37.       look_at <12.1552320,10.1385200,1.7488420>
  38.     }
  39.  
  40.     object{
  41.       light_source {<30.8475875,-13.8714243,11.2259689>
  42.         color red 1 green 1 blue 1}
  43.     }
  44.     end_insert
  45.